| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458 |
- <template>
- <LayoutNavigation />
- <LayoutContainer>
- <v-row>
- <v-col cols="12">
- <CommonBanner :imageSrc="'/images/actu/pub.png'" imageAlt="'line'" />
- </v-col>
- </v-row>
- <div v-if="job">
- <v-row class="custom-row">
- <v-col>
- <div class="d-flex align-items-center">
- <NuxtLink
- to="/nous-rejoindre"
- style="text-decoration: none !important"
- >
- <div class="carousel-button">
- <i class="fa-solid fa-arrow-left" />
- </div>
- </NuxtLink>
- <NuxtLink to="/nous-rejoindre" class="ml-2 back-button mt-12">
- Retour aux annonces
- </NuxtLink>
- </div>
- </v-col>
- </v-row>
- <LayoutUITitlePage :title="job.title" />
- <v-row class="blue-content">
- <v-col cols="6">
- <v-row class="custom-row">
- <h4 class="detail-job mt-6 ml-12">
- Type de contrat :
- <span class="bold">{{ job.contractType }} </span>
- </h4></v-row
- >
- <v-row class="custom-row">
- <h4 class="detail-job mt-6 ml-12">
- Location :
- <span class="bold">{{ job.postalCode }} {{ job.city }}</span>
- </h4></v-row
- >
- </v-col>
- <v-col cols="6">
- <v-row class="custom-row">
- <h4 class="detail-job mt-6 ml-12">
- Secteur d'activité : <span class="bold">{{ job.sector }}</span>
- </h4></v-row
- >
- <v-row class="custom-row">
- <h4 class="detail-job mt-6 ml-12">
- Date de parution :
- <span class="bold">{{ formatDate(job.startPublication) }}</span>
- </h4></v-row
- >
- </v-col>
- </v-row>
- <v-row>
- <p class="custom-row description-job mb-12" v-html="job.content"></p>
- </v-row>
- <v-row class="d-flex justify-center align-center">
- <v-btn class="btn mb-12" text>
- <v-icon class="fas fa-info mr-2"></v-icon>Je postule
- </v-btn>
- </v-row>
- </div>
- <v-row class="d-flex justify-space-between custom-row">
- <p class="share">MOTS CLÉS</p>
- <div>
- <p class="share">PARTAGER</p>
- </div>
- </v-row>
- <v-row class="d-flex justify-space-between mb-8 custom-row">
- <p class="key-word mt-3">ROCK CONCERT FESTIVAL</p>
- <div class="social-icons">
- <a href="https://facebook.com" target="_blank" class="social-icon">
- <i class="fa-brands fa-facebook"></i>
- </a>
- <a href="https://twitter.com" target="_blank" class="social-icon">
- <i class="fa-brands fa-twitter"></i>
- </a>
- <a href="https://messenger.com" target="_blank" class="social-icon">
- <i class="fa-brands fa-facebook-messenger"></i>
- </a>
- <a href="https://instagram.com" target="_blank" class="social-icon">
- <i class="fa-brands fa-instagram"></i>
- </a>
- <a href="https://linkedin.com" target="_blank" class="social-icon">
- <i class="fa-brands fa-linkedin"></i>
- </a>
- <a href="mailto:example@example.com" class="social-icon">
- <i class="fa-solid fa-envelope"></i>
- </a>
- </div>
- </v-row>
- </LayoutContainer>
- <LayoutFooterPrefooter />
- <LayoutFooter />
- </template>
- <script setup lang="ts">
- import { ref } from "vue";
- import { useRoute } from "vue-router";
- import "vue3-carousel/dist/carousel.css";
- import { useMaestroRequestService } from "~/composables/useMaestroRequestService";
- const { apiRequestService } = useMaestroRequestService();
- const job = ref(null);
- const route = useRoute();
- const jobID = route.params.id;
- const pending = ref(true);
- const config = useRuntimeConfig();
- const formatDate = (date: string) => {
- const dateObject = new Date(date);
- const day = dateObject.getDate();
- const month = dateObject.getMonth() + 1;
- const year = dateObject.getFullYear();
- return `${day}/${month}/${year}`;
- };
- onMounted(async () => {
- try {
- job.value = await apiRequestService.get(
- `${config.public.apiBaseUrl}/api/job-postings/${jobID}`
- );
- pending.value = false;
- } catch (error) {
- console.error("Erreur lors de la récupération de l'annonce", error);
- pending.value = false;
- }
- });
- const getImageUrl = (attachment: string) => {
- if (attachment) {
- return `${config.public.apiBaseUrl}/uploads/job_postings/${attachment}`;
- }
- console.log("pas d'image");
- };
- </script>
- <style scoped>
- .description-job {
- color: #0e2d32;
- text-align: justify;
- font-family: "Barlow";
- font-size: 1.875rem;
- font-style: normal;
- font-weight: 500;
- line-height: 2.125rem;
- }
- .custom-row {
- width: 90%;
- margin-left: auto;
- margin-right: auto;
- }
- :deep().text-left,
- :deep().text-right,
- :deep().description-square,
- :deep().black-square,
- :deep().blue-square {
- display: none;
- }
- :deep().text-right {
- display: none;
- }
- :deep().cover-image {
- transform: none;
- }
- .bold {
- font-weight: bold;
- }
- .detail-job {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 25px;
- line-height: 18px;
- margin-bottom: 1rem;
- }
- .blue-content {
- background-color: #64afb7;
- height: 10rem;
- margin-top: -1rem;
- margin-bottom: 2rem;
- }
- .banner-container {
- position: relative;
- overflow: hidden;
- display: flex;
- justify-content: center;
- align-items: flex-start;
- height: 25rem;
- width: 100%;
- }
- .cover-image {
- width: 95%;
- height: auto;
- object-fit: cover;
- margin: 0 auto;
- display: block;
- }
- .btn {
- background: var(--Vert-60, #64afb7);
- display: flex;
- left: 0;
- padding: 25px 28px;
- align-items: center;
- gap: 9px;
- color: var(--NEUTRAL---BLANC, #fff);
- font-family: Barlow;
- font-size: 0.9rem;
- border-radius: 5px;
- font-style: normal;
- font-weight: 700;
- line-height: 15px;
- letter-spacing: 1.3px;
- text-transform: uppercase;
- margin-bottom: -1rem;
- }
- .green--text {
- color: green;
- }
- .red--text {
- color: red;
- }
- .black--text {
- color: black;
- }
- .btn-news {
- color: #9edbdd;
- border-radius: 2rem;
- font-family: "Barlow";
- background: transparent;
- border: 1px solid #9edbdd;
- border-radius: 6px;
- font-style: normal;
- font-weight: 600;
- text-transform: uppercase;
- display: flex;
- flex-direction: row;
- align-items: center;
- padding: 25px;
- font-size: 10px;
- line-height: 15px;
- }
- .chip-detail {
- color: #000000;
- }
- .chip-custom {
- color: white;
- border: 1px solid white;
- border-radius: 3rem;
- text-transform: uppercase;
- font-family: "Barlow";
- font-style: normal;
- display: flex;
- align-items: center;
- text-align: center;
- }
- .card-localisation {
- letter-spacing: 0.18em;
- text-transform: uppercase;
- font-size: 10px;
- color: #112528;
- }
- .card {
- border-radius: 15px 15px 0 0;
- margin-bottom: 2rem;
- }
- .icon-title {
- color: #64afb7;
- margin-top: 4.5rem;
- }
- .container-title {
- display: flex;
- align-items: center;
- margin-left: 2rem;
- margin-top: 4.5rem;
- }
- .carousel-button i {
- color: #000000;
- }
- .card-text {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 16px;
- line-height: 18px;
- margin-bottom: 1rem;
- color: #fff !important;
- }
- .card-title {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 20px;
- line-height: 24px;
- display: flex;
- align-items: center;
- letter-spacing: 0.18em;
- text-transform: uppercase;
- color: #fff !important;
- }
- .card-date {
- font-size: 0.8em;
- color: #888;
- margin-left: 1rem;
- color: #fff !important;
- }
- .card-footer {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .card-body {
- text-align: left;
- margin-bottom: 1rem;
- margin-left: 1rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- line-height: 24px;
- color: #fff !important;
- color: #112528;
- }
- .card-img-top {
- border-radius: 9px 9px 0 0;
- width: 100%;
- object-fit: 90%;
- object-position: center;
- width: 384px;
- height: 247.11px;
- }
- .title,
- .carousel-button,
- .btn-news {
- margin-top: 2rem;
- margin-bottom: 2rem;
- }
- .agenda-details {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 16px;
- line-height: 20px;
- margin-left: 2rem;
- color: #091d20;
- margin-bottom: 3rem;
- width: 15rem;
- }
- .title {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 42px;
- line-height: 42px;
- margin-left: 2rem;
- color: #071b1f;
- }
- .carousel-button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 60px;
- height: 60px;
- background-color: transparent;
- border: 2px solid #000000;
- cursor: pointer;
- margin-right: 1rem;
- }
- .container-green {
- background-color: #0e2d32;
- }
- .back-button {
- text-decoration: none;
- color: #000000;
- font-family: "Barlow";
- font-size: 0.9rem;
- font-style: normal;
- font-weight: 700;
- letter-spacing: 1.8px;
- text-transform: uppercase;
- }
- .description-actu {
- color: #0e2d32;
- text-align: justify;
- font-family: Barlow;
- font-size: 30px;
- font-style: normal;
- font-weight: 500;
- line-height: 34px;
- margin-left: 3.5rem;
- margin-right: 3.5rem;
- margin-bottom: 3rem;
- }
- .share {
- color: #000;
- font-family: Barlow;
- font-size: 26px;
- font-style: normal;
- font-weight: 400;
- line-height: 28px;
- }
- .social-icons {
- display: flex;
- gap: 10px;
- }
- .social-icon i {
- font-size: 1.9em;
- margin-left: 0.5rem;
- margin-top: 0.5rem;
- color: #0e2d32;
- }
- .key-word {
- color: #000;
- font-family: Barlow;
- font-size: 20px;
- font-style: normal;
- font-weight: 500;
- line-height: 24px;
- }
- .title-other {
- color: #fff;
- }
- </style>
|